home *** CD-ROM | disk | FTP | other *** search
- /** test.skel 1.0 (22-Apr-90)
- **
- ** Test RVI powers of AppShell
- **
- ** Written by David N. Junod
- **/
-
- OPTIONS RESULTS
-
- /* Extract information about Skeleton and place it into the default
- * stem variable. */
-
- address skeleton.1 GetInfo
- stem = RESULT
- echo 'Dest. Stem: ' stem
-
- /* Display the application version */
- echo ' Version: ' value(stem||version)
-
- /* Display the name of the public screen that the application
- * resides on */
- echo ' Screen: ' value(stem||screen)
-
- /* Display the name of the application's ARexx port */
- echo 'ARexx Port: ' value(stem||arexx)
-
-
- /* Extract information about Skeleton and place it into a named
- * stem variable. */
-
- address skeleton.1 GetInfo skel.
-
- /* Display some application specific information */
- echo ' Mode: ' skel.mode
-